home *** CD-ROM | disk | FTP | other *** search
- unit Findwhat;
- (*-----
- File: FINDWHAT.PAS for Project CODEAPP.DPR
- -----*)
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
- StdCtrls, ExtCtrls;
-
- type
- TFindWhatDlg = class(TForm)
- OKBtn: TBitBtn;
- CancelBtn: TBitBtn;
- HelpBtn: TBitBtn;
- Bevel1: TBevel;
- ChooseLabel: TLabel;
- GroupBox1: TGroupBox;
- ComboBox1: TComboBox;
- StartTop: TCheckBox;
- AnyCase: TCheckBox;
- WholeWords: TCheckBox;
- procedure FormActivate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FindWhatDlg: TFindWhatDlg;
-
- implementation
-
- {$R *.DFM}
-
- procedure TFindWhatDlg.FormActivate(Sender: TObject);
- begin
- ComboBox1.SetFocus;
- end;
-
- end.
-